-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7.3.3 (d+e x)^m (a+b arctanh(c x^n))^p.nb
More file actions
7321 lines (7189 loc) · 342 KB
/
7.3.3 (d+e x)^m (a+b arctanh(c x^n))^p.nb
File metadata and controls
7321 lines (7189 loc) · 342 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 342796, 7312]
NotebookOptionsPosition[ 334885, 7110]
NotebookOutlinePosition[ 336627, 7164]
CellTagsIndexPosition[ 336584, 7161]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[
StyleBox[
RowBox[{Cell[TextData[StyleBox["Rules for integrands of the form",
FontFamily->"Arial",
FontSize->16]], "None"],
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}], ")"}], "m"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ",
SuperscriptBox["x", "n"]}], "]"}]}]}], ")"}], "p"]}],
FontSize->16]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, {3.5233155055329347`*^9, 3.523315506402936*^9}, {
3.523318726949605*^9, 3.5233187276796064`*^9}, {3.523920400879534*^9,
3.5239204094439487`*^9}, 3.52392096260852*^9, 3.523921038171853*^9,
3.5340477459008017`*^9, 3.5340515540554085`*^9, {3.536542511100503*^9,
3.53654251626051*^9}, {3.536775961244521*^9, 3.5367759616145215`*^9}, {
3.544373142375139*^9, 3.5443731599851637`*^9}, {3.5721095751430073`*^9,
3.5721095751430073`*^9}, {3.57578648209792*^9, 3.575786503859958*^9},
3.575786540270422*^9, {3.5757866379421935`*^9, 3.5757866609522343`*^9},
3.746047470037391*^9, 3.7460711681508455`*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}], ")"}], "q"], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{"p", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]]],
"None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538454742126`*^9, 3.54155384951462*^9}, {3.5417297197063265`*^9,
3.5417297252443366`*^9}, {3.546297494083555*^9, 3.5462974982435613`*^9}, {
3.5462989134855423`*^9, 3.5462989153655453`*^9}, 3.548544146508506*^9,
3.5488738855784535`*^9, {3.5505953688729563`*^9, 3.5505953726861744`*^9}, {
3.550619508681926*^9, 3.5506195174954305`*^9}, {3.551326301250945*^9,
3.551326301841979*^9}, {3.552150760656293*^9, 3.552150761436294*^9},
3.5521509768882723`*^9, {3.5521510341403728`*^9, 3.5521510486171985`*^9}, {
3.5521511118909097`*^9, 3.5521511159313164`*^9}, 3.55215165895267*^9,
3.552151705315952*^9, 3.553532182175474*^9, {3.553559669357978*^9,
3.553559705888029*^9}, {3.5535602318087654`*^9, 3.5535602417087793`*^9},
3.553617594461242*^9, 3.553617658031331*^9, {3.553617950531741*^9,
3.5536179652017612`*^9}, 3.5557731793147464`*^9, 3.5562986064709735`*^9,
3.5860254201973715`*^9, 3.586110663591037*^9, 3.586317678224332*^9,
3.586456869554533*^9, 3.620161187104122*^9, {3.7163360352700977`*^9,
3.7163360389513083`*^9}, {3.7163360885401444`*^9, 3.716336092028344*^9}, {
3.7163364427534046`*^9, 3.71633645789227*^9}, {3.7164009483720665`*^9,
3.7164009546614265`*^9}, {3.719022899294056*^9, 3.7190228995300694`*^9},
3.7190304539571576`*^9, 3.736566978403927*^9, 3.736623152120734*^9, {
3.746071230623419*^9, 3.7460712308464317`*^9}},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t",
RowBox[{Cell[TextData[StyleBox["1.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "p"],
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}]],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{"p", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538454742126`*^9, 3.54155384951462*^9}, {3.5417297197063265`*^9,
3.5417297252443366`*^9}, {3.546297494083555*^9, 3.5462974982435613`*^9}, {
3.5462989134855423`*^9, 3.5462989153655453`*^9}, 3.548544146508506*^9,
3.5488738855784535`*^9, {3.5505953688729563`*^9, 3.5505953726861744`*^9}, {
3.550619508681926*^9, 3.5506195174954305`*^9}, {3.551326301250945*^9,
3.551326301841979*^9}, {3.552150760656293*^9, 3.552150761436294*^9},
3.5521509768882723`*^9, {3.5521510341403728`*^9, 3.5521510486171985`*^9}, {
3.5521511118909097`*^9, 3.5521511159313164`*^9}, 3.55215165895267*^9,
3.552151705315952*^9, 3.553532182175474*^9, {3.553559669357978*^9,
3.553559705888029*^9}, {3.5535602318087654`*^9, 3.5535602417087793`*^9},
3.553617594461242*^9, 3.553617658031331*^9, {3.553617950531741*^9,
3.5536179652017612`*^9}, 3.5557731793147464`*^9, 3.5562986064709735`*^9,
3.5860254201973715`*^9, 3.586110663591037*^9, 3.586317678224332*^9,
3.586456869554533*^9, 3.620161187104122*^9, 3.7163360963165894`*^9, {
3.7190295717036953`*^9, 3.719029640771646*^9}, 3.7190300827579265`*^9,
3.7190304556852565`*^9, {3.7191100105312843`*^9, 3.7191100180177126`*^9},
3.736567640997825*^9},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t\t",
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "p"],
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}]],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{"p", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}], "\[And]", " ",
RowBox[{
RowBox[{
RowBox[{
SuperscriptBox["c", "2"], " ",
SuperscriptBox["d", "2"]}], "-",
SuperscriptBox["e", "2"]}], "\[Equal]", "0"}]}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.534962469565694*^9, 3.5349624910757236`*^9}, {
3.5349625224057674`*^9, 3.534962522655768*^9}, {3.534965265519608*^9,
3.534965265519608*^9}, {3.5349668288168063`*^9, 3.5349668292668066`*^9}, {
3.5349747358481646`*^9, 3.5349747358481646`*^9}, {3.534975457949176*^9,
3.534975457949176*^9}, {3.5368633963532934`*^9, 3.536863396571694*^9}, {
3.541644322511304*^9, 3.5416443577513533`*^9}, {3.5416458269234104`*^9,
3.541645839633428*^9}, {3.5416460312236967`*^9, 3.541646031483697*^9},
3.541646227783972*^9, {3.541647080335165*^9, 3.5416471077052035`*^9}, {
3.541648997607849*^9, 3.5416489978278494`*^9}, 3.541649088407976*^9, {
3.5417848711596775`*^9, 3.541784902429721*^9}, {3.541786145331461*^9,
3.5417861455914617`*^9}, {3.5417870037166634`*^9, 3.5417870039366636`*^9},
3.5462979620242105`*^9, {3.546298264094633*^9, 3.546298265344635*^9}, {
3.546299000235664*^9, 3.546299001505666*^9}, {3.546315119909564*^9,
3.5463151267659564`*^9}, {3.547227356319705*^9, 3.547227356319705*^9},
3.547918559331044*^9, {3.547918610170952*^9, 3.5479186304411116`*^9},
3.548537755517557*^9, 3.5485441629685287`*^9, 3.5485517520154133`*^9, {
3.5488740727887154`*^9, 3.5488740727887154`*^9}, {3.548874206618903*^9,
3.548874206808903*^9}, 3.548877100795455*^9, 3.550596464087599*^9, {
3.5505965767870445`*^9, 3.5505965767870445`*^9}, 3.5505966202465305`*^9, {
3.5506039138305197`*^9, 3.55060391400453*^9}, {3.5506040039986773`*^9,
3.550604005776779*^9}, {3.5506178888272758`*^9, 3.5506178900273447`*^9}, {
3.550770598144562*^9, 3.550770659629079*^9}, {3.5507707252908344`*^9,
3.5507707474461017`*^9}, 3.5507880023630266`*^9, {3.5508017696214375`*^9,
3.5508017788269644`*^9}, {3.5508018116158395`*^9, 3.5508018116158395`*^9},
3.5508018976437597`*^9, {3.5508021384015307`*^9, 3.550802155115487*^9}, {
3.5508022151019173`*^9, 3.5508022151019173`*^9}, {3.550802487106476*^9,
3.5508025179152374`*^9}, {3.5508029261175857`*^9,
3.5508029342300496`*^9}, {3.5521511708590136`*^9, 3.5521511712334137`*^9},
3.552151666269083*^9, {3.5535324250863676`*^9, 3.553532441643315*^9}, {
3.553532476791325*^9, 3.553532477502366*^9}, {3.5535325810722895`*^9,
3.5535325810722895`*^9}, {3.553534924419321*^9, 3.5535349316017323`*^9}, {
3.5535597570381007`*^9, 3.553559765608113*^9}, {3.553559900728302*^9,
3.55355990606831*^9}, 3.553560247968788*^9, {3.553560284118839*^9,
3.553560284268839*^9}, 3.553617750921461*^9, {3.5536177847415085`*^9,
3.553617790541517*^9}, 3.553618024341844*^9, 3.5536194761638765`*^9, {
3.553619522793942*^9, 3.553619534763959*^9}, {3.5536227075084004`*^9,
3.553622710058404*^9}, 3.556299049021593*^9, 3.5860254203073716`*^9,
3.5860254790324574`*^9, {3.5860540510467997`*^9, 3.5860540510467997`*^9},
3.5861106638610373`*^9, {3.5861119320828123`*^9, 3.5861119320828123`*^9},
3.5863178468545675`*^9, 3.620161187685156*^9, {3.7164014597993183`*^9,
3.7164014600823345`*^9}, {3.7164020991028843`*^9, 3.716402105446247*^9}, {
3.717698912962572*^9, 3.7176989132045865`*^9}, {3.719029844323289*^9,
3.7190298460843897`*^9}, {3.7190300220544543`*^9,
3.7190300286868334`*^9}, {3.719036615362367*^9, 3.7190366158153934`*^9},
3.7191100205028543`*^9, 3.719111405576076*^9, {3.7191114472994623`*^9,
3.7191114472994623`*^9}, {3.7191135863518095`*^9, 3.7191136214928193`*^9},
3.7365676733866777`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Integration by parts", "Subsubsection",
CellGroupingRules->{GroupTogetherGrouping, 10000.},
CellChangeTimes->{3.4931456018039613`*^9}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
FractionBox["1",
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}]], "\[Equal]",
RowBox[{
RowBox[{"-",
FractionBox["1", "e"]}], " ",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"Log", "[",
FractionBox["2",
RowBox[{"1", "+",
FractionBox[
RowBox[{"e", " ", "x"}], "d"]}]], "]"}]}]}]}]],
CellChangeTimes->{{3.586053639237276*^9, 3.586053710685402*^9}}]
}], "Subsubsection",
CellGroupingRules->{GroupTogetherGrouping, 10000.},
CellChangeTimes->{
3.4931456018039613`*^9, {3.586053684929756*^9, 3.5860536866457596`*^9}, {
3.5860537170034127`*^9, 3.5860537174246135`*^9}, {3.718573200354621*^9,
3.718573200354621*^9}, {3.718573243558092*^9, 3.718573243558092*^9}}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
RowBox[{"p", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}], "\[And]", " ",
RowBox[{
RowBox[{
RowBox[{
SuperscriptBox["c", "2"], " ",
SuperscriptBox["d", "2"]}], "-",
SuperscriptBox["e", "2"]}], "\[Equal]", "0"}]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellGroupingRules->{GroupTogetherGrouping, 10000.},
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9}, {
3.492907662576008*^9, 3.4929076635660095`*^9}, {3.4930735907627287`*^9,
3.4930736091827545`*^9}, {3.4931451699433565`*^9, 3.493145207453409*^9}, {
3.4931452956835327`*^9, 3.4931453218235693`*^9}, {3.4931453713536386`*^9,
3.4931453747436433`*^9}, 3.4931456018039613`*^9, {3.493146996085913*^9,
3.4931470125759363`*^9}, {3.493581126911767*^9, 3.493581143581791*^9}, {
3.4940337767420216`*^9, 3.494033781042267*^9}, {3.5536195024939137`*^9,
3.553619509943924*^9}, {3.5860540517644005`*^9, 3.5860540517644005`*^9}, {
3.5861119320928125`*^9, 3.5861119320928125`*^9}, {3.716402110429532*^9,
3.716402110429532*^9}, {3.7190300465178537`*^9, 3.7190300465178537`*^9}, {
3.7191114498476086`*^9, 3.7191114498476086`*^9}, {3.719113626700117*^9,
3.7191136269151297`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "p"],
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}]],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
RowBox[{"-",
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "p"], " ",
RowBox[{"Log", "[",
FractionBox["2",
RowBox[{"1", "+",
FractionBox[
RowBox[{"e", " ", "x"}], "d"]}]], "]"}]}], "e"]}]}]}]}]}], "+",
RowBox[{
FractionBox[
RowBox[{"b", " ", "c", " ", "p"}], "e"],
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}],
RowBox[{"p", "-", "1"}]], " ",
RowBox[{"Log", "[",
FractionBox["2",
RowBox[{"1", "+",
FractionBox[
RowBox[{"e", " ", "x"}], "d"]}]], "]"}]}],
RowBox[{"1", "-",
RowBox[{
SuperscriptBox["c", "2"],
SuperscriptBox["x", "2"]}]}]],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]], "Subsubtitle",
CellGroupingRules->{GroupTogetherGrouping, 10000.},
CellChangeTimes->{{3.4927459475946445`*^9, 3.49274596552767*^9}, {
3.4927470791633663`*^9, 3.492747100502587*^9}, {3.492838456185856*^9,
3.492838468151077*^9}, {3.4928389429535108`*^9, 3.492838996648805*^9}, {
3.492839156730687*^9, 3.4928391643123*^9}, 3.4928403497119923`*^9, {
3.492908275826866*^9, 3.4929083226469316`*^9}, 3.492910391739828*^9, {
3.4931446954326925`*^9, 3.493144762932787*^9}, 3.4931448959029727`*^9, {
3.493144975223084*^9, 3.4931449799230905`*^9}, {3.4931453401435947`*^9,
3.4931453627536263`*^9}, 3.4931456018039613`*^9, {3.4931469777458878`*^9,
3.4931469799558907`*^9}, {3.4940008713645473`*^9,
3.4940008713685474`*^9}, {3.4940233075696473`*^9, 3.494023307900666*^9}, {
3.4940340310215654`*^9, 3.4940340485815697`*^9}, {3.494034864796254*^9,
3.4940348686954775`*^9}, {3.4940376218759503`*^9,
3.4940376263072042`*^9}, {3.5860254203073716`*^9, 3.5860254203173714`*^9},
3.5860254790324574`*^9, {3.586053422131695*^9, 3.586053430150109*^9},
3.5860534688381767`*^9, {3.586053575308364*^9, 3.586053582499976*^9}, {
3.5860545897269454`*^9, 3.586054594282153*^9}, {3.586110663871037*^9,
3.586110663891037*^9}, 3.586110969531465*^9, {3.7164021125276527`*^9,
3.716402119618058*^9}, {3.7185734037712555`*^9, 3.7185734055233555`*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "+",
RowBox[{"b_.", "*",
RowBox[{"ArcTanh", "[",
RowBox[{"c_.", "*", "x_"}], "]"}]}]}], ")"}], "^", "p_."}], "/",
RowBox[{"(",
RowBox[{"d_", "+",
RowBox[{"e_.", "*", "x_"}]}], ")"}]}], ",", "x_Symbol"}], "]"}], " ", ":=",
"\n", " ",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"-",
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"ArcTanh", "[",
RowBox[{"c", "*", "x"}], "]"}]}]}], ")"}], "^", "p"}]}], "*",
RowBox[{
RowBox[{"Log", "[",
RowBox[{"2", "/",
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"e", "*",
RowBox[{"x", "/", "d"}]}]}], ")"}]}], "]"}], "/", "e"}]}], " ",
"+", " ", "\n", " ",
RowBox[{"b", "*", "c", "*",
RowBox[{"p", "/", "e"}], "*",
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"ArcTanh", "[",
RowBox[{"c", "*", "x"}], "]"}]}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"p", "-", "1"}], ")"}]}], "*",
RowBox[{
RowBox[{"Log", "[",
RowBox[{"2", "/",
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"e", "*",
RowBox[{"x", "/", "d"}]}]}], ")"}]}], "]"}], "/",
RowBox[{"(",
RowBox[{"1", "-",
RowBox[{
RowBox[{"c", "^", "2"}], "*",
RowBox[{"x", "^", "2"}]}]}], ")"}]}]}], ",", "x"}], "]"}]}]}],
" ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "c", ",", "d", ",", "e"}], "}"}], ",",
"x"}], "]"}], " ", "&&", " ",
RowBox[{"IGtQ", "[",
RowBox[{"p", ",", "0"}], "]"}], " ", "&&", " ",
RowBox[{"EqQ", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"c", "^", "2"}], "*",
RowBox[{"d", "^", "2"}]}], "-",
RowBox[{"e", "^", "2"}]}], ",", "0"}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.4927475229037466`*^9, 3.4927477533449273`*^9}, {
3.4927478131093454`*^9, 3.492747834183551*^9}, {3.4927478811922398`*^9,
3.4927479273238783`*^9}, {3.492747994901744*^9, 3.4927480520830145`*^9}, {
3.492748126383264*^9, 3.492748126897293*^9}, {3.492799196725788*^9,
3.4927992401718645`*^9}, {3.4927992767227287`*^9,
3.4927993156759973`*^9}, {3.4927994994131203`*^9, 3.492799508102335*^9}, {
3.492799544387999*^9, 3.4927995657444363`*^9}, {3.4927996261789427`*^9,
3.492799660327403*^9}, {3.4927997257383175`*^9, 3.4927997433351483`*^9}, {
3.4927998179656796`*^9, 3.4927998331289062`*^9}, {3.4928379334601374`*^9,
3.492837939216548*^9}, {3.4928380301959076`*^9, 3.4928380706935787`*^9}, {
3.4928381256836753`*^9, 3.492838126026876*^9}, {3.492838194448596*^9,
3.492838214806632*^9}, {3.4928386496573954`*^9, 3.4928386538382025`*^9}, {
3.4928387393419533`*^9, 3.4928388738453894`*^9}, {3.4928392099891806`*^9,
3.4928392282724123`*^9}, {3.4928392656204743`*^9, 3.492839265890475*^9}, {
3.4928393374405746`*^9, 3.492839337970576*^9}, 3.4928413413933806`*^9, {
3.4930740306333447`*^9, 3.4930740321133466`*^9}, {3.493144462352366*^9,
3.493144468172374*^9}, {3.493144540822476*^9, 3.4931445433324795`*^9}, {
3.4931445892825437`*^9, 3.4931445898425446`*^9}, {3.493145449723748*^9,
3.493145475833785*^9}, {3.49358106455168*^9, 3.493581066611683*^9}, {
3.493748575803213*^9, 3.4937486011688576`*^9}, {3.4940008713785477`*^9,
3.4940008713835483`*^9}, {3.49402332003436*^9, 3.4940233203603783`*^9}, {
3.4940349261607647`*^9, 3.494034948444039*^9}, {3.494037644559248*^9,
3.494037647619423*^9}, 3.548732411214406*^9, 3.548732673066383*^9, {
3.5536194818838844`*^9, 3.553619489273895*^9}, {3.5860255405475454`*^9,
3.5860255405575457`*^9}, {3.5860256114501486`*^9, 3.5860256114501486`*^9},
3.586025658395217*^9, 3.5860264994089313`*^9, 3.5860538480748425`*^9,
3.5860539041101413`*^9, {3.5860539762914677`*^9, 3.586053998443507*^9}, {
3.5860540741940403`*^9, 3.5860540777352467`*^9}, {3.586110663891037*^9,
3.5861106639110374`*^9}, 3.586110993071498*^9, 3.5861119420428267`*^9,
3.7061413610379276`*^9, 3.7152316664656773`*^9, {3.715232060397209*^9,
3.7152320606312227`*^9}, {3.7164021230032516`*^9, 3.716402130165661*^9},
3.716402163736581*^9, {3.7185734111476774`*^9, 3.7185734227423406`*^9}, {
3.71858038554459*^9, 3.718580393845065*^9}, {3.7190300586855497`*^9,
3.719030060601659*^9}, 3.7191103224461246`*^9, 3.719111472309893*^9,
3.719113632053423*^9, 3.720160282010103*^9, 3.720200507573536*^9},
Background->GrayLevel[0.85]],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "+",
RowBox[{"b_.", "*",
RowBox[{"ArcCoth", "[",
RowBox[{"c_.", "*", "x_"}], "]"}]}]}], ")"}], "^", "p_."}], "/",
RowBox[{"(",
RowBox[{"d_", "+",
RowBox[{"e_.", "*", "x_"}]}], ")"}]}], ",", "x_Symbol"}], "]"}], " ", ":=",
"\n", " ",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"-",
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"ArcCoth", "[",
RowBox[{"c", "*", "x"}], "]"}]}]}], ")"}], "^", "p"}]}], "*",
RowBox[{
RowBox[{"Log", "[",
RowBox[{"2", "/",
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"e", "*",
RowBox[{"x", "/", "d"}]}]}], ")"}]}], "]"}], "/", "e"}]}], " ",
"+", " ", "\n", " ",
RowBox[{"b", "*", "c", "*",
RowBox[{"p", "/", "e"}], "*",
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"ArcCoth", "[",
RowBox[{"c", "*", "x"}], "]"}]}]}], ")"}], "^",
RowBox[{"(",
RowBox[{"p", "-", "1"}], ")"}]}], "*",
RowBox[{
RowBox[{"Log", "[",
RowBox[{"2", "/",
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"e", "*",
RowBox[{"x", "/", "d"}]}]}], ")"}]}], "]"}], "/",
RowBox[{"(",
RowBox[{"1", "-",
RowBox[{
RowBox[{"c", "^", "2"}], "*",
RowBox[{"x", "^", "2"}]}]}], ")"}]}]}], ",", "x"}], "]"}]}]}],
" ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "c", ",", "d", ",", "e"}], "}"}], ",",
"x"}], "]"}], " ", "&&", " ",
RowBox[{"IGtQ", "[",
RowBox[{"p", ",", "0"}], "]"}], " ", "&&", " ",
RowBox[{"EqQ", "[",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"c", "^", "2"}], "*",
RowBox[{"d", "^", "2"}]}], "-",
RowBox[{"e", "^", "2"}]}], ",", "0"}], "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.4927475229037466`*^9, 3.4927477533449273`*^9}, {
3.4927478131093454`*^9, 3.492747834183551*^9}, {3.4927478811922398`*^9,
3.4927479273238783`*^9}, {3.492747994901744*^9, 3.4927480520830145`*^9}, {
3.492748126383264*^9, 3.492748126897293*^9}, {3.492799196725788*^9,
3.4927992401718645`*^9}, {3.4927992767227287`*^9,
3.4927993156759973`*^9}, {3.4927994994131203`*^9, 3.492799508102335*^9}, {
3.492799544387999*^9, 3.4927995657444363`*^9}, {3.4927996261789427`*^9,
3.492799660327403*^9}, {3.4927997257383175`*^9, 3.4927997433351483`*^9}, {
3.4927998179656796`*^9, 3.4927998331289062`*^9}, {3.4928379334601374`*^9,
3.492837939216548*^9}, {3.4928380301959076`*^9, 3.4928380706935787`*^9}, {
3.4928381256836753`*^9, 3.492838126026876*^9}, {3.492838194448596*^9,
3.492838214806632*^9}, {3.4928386496573954`*^9, 3.4928386538382025`*^9}, {
3.4928387393419533`*^9, 3.4928388738453894`*^9}, {3.4928392099891806`*^9,
3.4928392282724123`*^9}, {3.4928392656204743`*^9, 3.492839265890475*^9}, {
3.4928393374405746`*^9, 3.492839337970576*^9}, 3.4928413413933806`*^9, {
3.4930740306333447`*^9, 3.4930740321133466`*^9}, {3.493144462352366*^9,
3.493144468172374*^9}, {3.493144540822476*^9, 3.4931445433324795`*^9}, {
3.4931445892825437`*^9, 3.4931445898425446`*^9}, {3.493145449723748*^9,
3.493145475833785*^9}, {3.49358106455168*^9, 3.493581066611683*^9}, {
3.493748575803213*^9, 3.4937486011688576`*^9}, {3.4940008713785477`*^9,
3.4940008713835483`*^9}, {3.49402332003436*^9, 3.4940233203603783`*^9}, {
3.4940349261607647`*^9, 3.494034948444039*^9}, {3.494037644559248*^9,
3.494037647619423*^9}, {3.494043967362791*^9, 3.4940439673667912`*^9}, {
3.4940465310984287`*^9, 3.494046533169547*^9}, 3.548731603940726*^9,
3.5487319520106344`*^9, 3.553619724254224*^9, {3.586025611470149*^9,
3.586025611470149*^9}, 3.586025686105256*^9, {3.5860258657805157`*^9,
3.5860258657805157`*^9}, 3.586026499428931*^9, 3.5860538496972456`*^9,
3.5860539070117464`*^9, 3.586053977960671*^9, {3.5860540114383297`*^9,
3.586054022171149*^9}, 3.5860540898408675`*^9, 3.5860650298493986`*^9, {
3.586110700871089*^9, 3.5861107008910885`*^9}, 3.586110993091498*^9,
3.5861119514628396`*^9, 3.586112003832913*^9, 3.7061413610579276`*^9,
3.7152316664756784`*^9, 3.7152320650844774`*^9, {3.716402133373845*^9,
3.7164021429683933`*^9}, {3.7185734245394435`*^9, 3.718573426483555*^9}, {
3.718580397380267*^9, 3.7185803990713634`*^9}, 3.7190300644588795`*^9,
3.7191103235611887`*^9, 3.7191114695847373`*^9, 3.7191136339345307`*^9,
3.7201603069105277`*^9, 3.720200521966359*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9, 3.4941724567488375`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t\t",
RowBox[{Cell[TextData[StyleBox["2.",
FontFamily->"Arial"]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}], ")"}], "p"],
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}]],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{"p", "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}], "\[And]", " ",
RowBox[{
RowBox[{
RowBox[{
SuperscriptBox["c", "2"], " ",
SuperscriptBox["d", "2"]}], "-",
SuperscriptBox["e", "2"]}], "\[NotEqual]", "0"}]}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, 3.52105258275843*^9, 3.5210531741726685`*^9, {
3.521057461672199*^9, 3.5210574760242243`*^9}, {3.521059881564049*^9,
3.521059886088057*^9}, {3.5213902158895197`*^9, 3.521390217543123*^9}, {
3.521390827878595*^9, 3.521390829376197*^9}, {3.5214688792561245`*^9,
3.521468879443325*^9}, {3.523320201951167*^9, 3.523320202247567*^9}, {
3.5288596764894824`*^9, 3.5288596768094826`*^9}, {3.529196266260353*^9,
3.5291962665099535`*^9}, {3.5291997050223927`*^9,
3.5291997052563934`*^9}, {3.529201346457276*^9, 3.529201347252877*^9}, {
3.529285041073242*^9, 3.5292850412632427`*^9}, {3.529285215443486*^9,
3.529285215443486*^9}, {3.5295115356999426`*^9, 3.5295115433443794`*^9}, {
3.529521412127842*^9, 3.529521414647986*^9}, {3.529529429975619*^9,
3.529529432955224*^9}, 3.5340074894011116`*^9, 3.5415537711400824`*^9, {
3.5415538454742126`*^9, 3.54155384951462*^9}, {3.5417297197063265`*^9,
3.5417297252443366`*^9}, {3.546297494083555*^9, 3.5462974982435613`*^9}, {
3.5462989134855423`*^9, 3.5462989153655453`*^9}, 3.548544146508506*^9,
3.5488738855784535`*^9, {3.5505953688729563`*^9, 3.5505953726861744`*^9}, {
3.550619508681926*^9, 3.5506195174954305`*^9}, {3.551326301250945*^9,
3.551326301841979*^9}, {3.552150760656293*^9, 3.552150761436294*^9},
3.5521509768882723`*^9, {3.5521510341403728`*^9, 3.5521510486171985`*^9}, {
3.5521511118909097`*^9, 3.5521511159313164`*^9}, 3.55215165895267*^9,
3.552151705315952*^9, 3.553532182175474*^9, {3.553559669357978*^9,
3.553559705888029*^9}, {3.5535602318087654`*^9, 3.5535602417087793`*^9},
3.553617594461242*^9, 3.553617658031331*^9, {3.553617950531741*^9,
3.5536179652017612`*^9}, 3.5557731793147464`*^9, 3.5562986064709735`*^9,
3.5860254201973715`*^9, 3.586110663591037*^9, 3.586317678224332*^9,
3.586456869554533*^9, 3.620161187104122*^9, 3.7163360963165894`*^9, {
3.7190295717036953`*^9, 3.719029640771646*^9}, 3.7190300827579265`*^9,
3.7190304556852565`*^9, {3.7191100105312843`*^9, 3.7191100180177126`*^9}, {
3.7191114025599036`*^9, 3.7191114301894836`*^9}, {3.719113675256894*^9,
3.719113679813155*^9}, 3.7197714106247983`*^9, {3.719774210917966*^9,
3.719774210917966*^9}, {3.7212646691176*^9, 3.7212646691176*^9},
3.7212647652310977`*^9, 3.736567677425909*^9},
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\t\t\t",
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
FractionBox[
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"ArcTanh", "[",
RowBox[{"c", " ", "x"}], "]"}]}]}],
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}]],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{
SuperscriptBox["c", "2"], " ",
SuperscriptBox["d", "2"]}], "-",
SuperscriptBox["e", "2"]}], "\[NotEqual]", "0"}]]]],
"None"]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193422443984776`*^9, 3.5193422447260776`*^9},
3.5193424488212357`*^9, {3.5193434708254333`*^9, 3.519343473103037*^9}, {
3.5193435097631016`*^9, 3.51934353169674*^9}, {3.519345739319023*^9,
3.519345739599823*^9}, 3.5193462601259375`*^9, {3.5193475061060295`*^9,
3.5193475233908596`*^9}, {3.519351391880224*^9, 3.5193513931402254`*^9}, {
3.519403773021052*^9, 3.5194037798564425`*^9}, 3.5194106793250647`*^9, {
3.519537578341393*^9, 3.5195375792305946`*^9}, {3.5195376277778797`*^9,
3.51953767927357*^9}, {3.5197586260636144`*^9, 3.5197586260636144`*^9}, {
3.51978053295651*^9, 3.519780542862528*^9}, {3.5197806526087203`*^9,
3.5197806657595434`*^9}, {3.5197807490168896`*^9, 3.5197807642581167`*^9},
3.5197809004619555`*^9, {3.519782653514635*^9, 3.5197826623286505`*^9}, {
3.5200207810164795`*^9, 3.520020785046485*^9}, {3.5213126833374643`*^9,
3.5213126833374643`*^9}, {3.521328235411002*^9, 3.521328235411002*^9}, {
3.523315567893022*^9, 3.523315567893022*^9}, {3.5233157569332867`*^9,
3.5233157613032923`*^9}, {3.5323023198133526`*^9, 3.532302355723403*^9}, {
3.5323026417638035`*^9, 3.5323026417638035`*^9}, {3.5323026980138817`*^9,
3.5323026980138817`*^9}, {3.532636287104328*^9, 3.532636287104328*^9}, {
3.5330803686035347`*^9, 3.533080368863535*^9}, {3.533248909289961*^9,
3.5332489110299635`*^9}, {3.534962469565694*^9, 3.5349624910757236`*^9}, {
3.5349625224057674`*^9, 3.534962522655768*^9}, {3.534965265519608*^9,
3.534965265519608*^9}, {3.5349668288168063`*^9, 3.5349668292668066`*^9}, {
3.5349747358481646`*^9, 3.5349747358481646`*^9}, {3.534975457949176*^9,
3.534975457949176*^9}, {3.5368633963532934`*^9, 3.536863396571694*^9}, {
3.541644322511304*^9, 3.5416443577513533`*^9}, {3.5416458269234104`*^9,
3.541645839633428*^9}, {3.5416460312236967`*^9, 3.541646031483697*^9},
3.541646227783972*^9, {3.541647080335165*^9, 3.5416471077052035`*^9}, {
3.541648997607849*^9, 3.5416489978278494`*^9}, 3.541649088407976*^9, {
3.5417848711596775`*^9, 3.541784902429721*^9}, {3.541786145331461*^9,
3.5417861455914617`*^9}, {3.5417870037166634`*^9, 3.5417870039366636`*^9},
3.5462979620242105`*^9, {3.546298264094633*^9, 3.546298265344635*^9}, {
3.546299000235664*^9, 3.546299001505666*^9}, {3.546315119909564*^9,
3.5463151267659564`*^9}, {3.547227356319705*^9, 3.547227356319705*^9},
3.547918559331044*^9, {3.547918610170952*^9, 3.5479186304411116`*^9},
3.548537755517557*^9, 3.5485441629685287`*^9, 3.5485517520154133`*^9, {
3.5488740727887154`*^9, 3.5488740727887154`*^9}, {3.548874206618903*^9,
3.548874206808903*^9}, 3.548877100795455*^9, 3.550596464087599*^9, {
3.5505965767870445`*^9, 3.5505965767870445`*^9}, 3.5505966202465305`*^9, {
3.5506039138305197`*^9, 3.55060391400453*^9}, {3.5506040039986773`*^9,
3.550604005776779*^9}, {3.5506178888272758`*^9, 3.5506178900273447`*^9}, {
3.550770598144562*^9, 3.550770659629079*^9}, {3.5507707252908344`*^9,
3.5507707474461017`*^9}, 3.5507880023630266`*^9, {3.5508017696214375`*^9,
3.5508017788269644`*^9}, {3.5508018116158395`*^9, 3.5508018116158395`*^9},
3.5508018976437597`*^9, {3.5508021384015307`*^9, 3.550802155115487*^9}, {
3.5508022151019173`*^9, 3.5508022151019173`*^9}, {3.550802487106476*^9,
3.5508025179152374`*^9}, {3.5508029261175857`*^9,
3.5508029342300496`*^9}, {3.5521511708590136`*^9, 3.5521511712334137`*^9},
3.552151666269083*^9, {3.5535324250863676`*^9, 3.553532441643315*^9}, {
3.553532476791325*^9, 3.553532477502366*^9}, {3.5535325810722895`*^9,
3.5535325810722895`*^9}, {3.553534924419321*^9, 3.5535349316017323`*^9}, {
3.5535597570381007`*^9, 3.553559765608113*^9}, {3.553559900728302*^9,
3.55355990606831*^9}, 3.553560247968788*^9, {3.553560284118839*^9,
3.553560284268839*^9}, 3.553617750921461*^9, {3.5536177847415085`*^9,
3.553617790541517*^9}, 3.553618024341844*^9, 3.5536194761638765`*^9, {
3.553619522793942*^9, 3.553619534763959*^9}, {3.5536227075084004`*^9,
3.553622710058404*^9}, 3.556299049021593*^9, 3.5860254203073716`*^9,
3.5860254790324574`*^9, {3.5860540510467997`*^9, 3.5860540510467997`*^9},
3.5861106638610373`*^9, {3.5861119320828123`*^9, 3.5861119320828123`*^9},
3.5863178468545675`*^9, 3.620161187685156*^9, {3.7164014597993183`*^9,
3.7164014600823345`*^9}, {3.7164020991028843`*^9, 3.716402105446247*^9}, {
3.717698912962572*^9, 3.7176989132045865`*^9}, {3.719029844323289*^9,
3.7190298460843897`*^9}, {3.7190300220544543`*^9,
3.7190300286868334`*^9}, {3.719036615362367*^9, 3.7190366158153934`*^9}, {
3.7191100205028543`*^9, 3.7191100674555397`*^9}, 3.71911140966331*^9, {
3.7191114549779015`*^9, 3.7191114549779015`*^9}, 3.7197714290888543`*^9, {
3.7197742155972333`*^9, 3.7197742155982337`*^9}, {3.7203177741576686`*^9,
3.7203177765008025`*^9}, {3.7212561298405824`*^9,
3.7212561652366066`*^9}, {3.7212570255468135`*^9,
3.7212570263098574`*^9}, {3.721259419726753*^9, 3.721259436352704*^9}, {
3.72126466963663*^9, 3.72126466963663*^9}, 3.7212647661571503`*^9,
3.7365676793030167`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Algebraic expansion and integration by parts", \
"Subsubsection",
CellChangeTimes->{{3.7190221262688413`*^9, 3.719022129603032*^9}, {
3.721256308287789*^9, 3.7212563178283343`*^9}}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
FractionBox["1",
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}]], "\[Equal]",
RowBox[{
FractionBox["c",
RowBox[{"e", " ",
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"c", " ", "x"}]}], ")"}]}]], "-",
FractionBox[
RowBox[{
RowBox[{"c", " ", "d"}], "-", "e"}],
RowBox[{"e", " ",
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"c", " ", "x"}]}], ")"}], " ",
RowBox[{"(",
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}], ")"}]}]]}]}]],
CellChangeTimes->{{3.7164000820815177`*^9, 3.7164001510404615`*^9}}]
}], "Subsubsection",
CellChangeTimes->{{3.7164000749121075`*^9, 3.716400075869162*^9},
3.7164001604469995`*^9, {3.719022181028973*^9, 3.719022181028973*^9}, {
3.719022443246971*^9, 3.719022443246971*^9}, {3.719769203731571*^9,
3.719769203731571*^9}, {3.7197693004221015`*^9, 3.7197693004221015`*^9}, {
3.721256533038644*^9, 3.721256533038644*^9}, {3.72126543103918*^9,
3.72126543103918*^9}}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
FractionBox["1",
RowBox[{"1", "+",
RowBox[{"c", " ", "x"}]}]], "\[Equal]",
RowBox[{
RowBox[{"-",
FractionBox["1", "c"]}], " ",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"Log", "[",
FractionBox["2",
RowBox[{"1", "+",
RowBox[{"c", " ", "x"}]}]], "]"}]}]}]}]],
CellChangeTimes->{{3.7164000820815177`*^9, 3.7164001510404615`*^9}}]
}], "Subsubsection",
CellChangeTimes->{{3.7164000749121075`*^9, 3.716400075869162*^9},
3.7164001604469995`*^9, {3.719022181028973*^9, 3.719022181028973*^9}, {
3.719022443246971*^9, 3.719022443246971*^9}, {3.7190225237215743`*^9,
3.7190225237215743`*^9}, {3.7197692042766027`*^9,
3.7197692042766027`*^9}, {3.719769358846443*^9, 3.719769358846443*^9}, {
3.721256845300504*^9, 3.721256845301504*^9}, {3.721257197053623*^9,
3.7212571970546236`*^9}, {3.7212577759327335`*^9,
3.7212577759327335`*^9}, {3.7212654753497143`*^9, 3.7212654753497143`*^9}}],
Cell[TextData[{
"Basis: ",
Cell[BoxData[
RowBox[{
FractionBox["1",
RowBox[{
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"c", " ", "x"}]}], ")"}], " ",
RowBox[{"(",
RowBox[{"d", "+",
RowBox[{"e", " ", "x"}]}], ")"}]}]], "\[Equal]",
RowBox[{
RowBox[{"-",
FractionBox["1",
RowBox[{
RowBox[{"c", " ", "d"}], "-", "e"}]]}], " ",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
RowBox[{"Log", "[",
FractionBox[
RowBox[{"2", " ", "c", " ",
RowBox[{"(",
RowBox[{"d", "+",